home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / nos042_s / main.h < prev    next >
C/C++ Source or Header  |  1994-09-16  |  921b  |  38 lines

  1. /*
  2.     -----------------------------------------------------
  3.     ATARI Version by David Nash - dnash@chaos.demon.co.uk
  4.  
  5.     Added definitions for atari_ver
  6.     -----------------------------------------------------
  7. */
  8.  
  9. /****************************************************************************
  10. *    $Id: main.h 1.2 94/01/04 14:09:42 ROOT_DOS Exp 
  11. *    07 Nov 93    1.2        GT    Prompt global.
  12. ****************************************************************************/
  13.  
  14. #ifndef _MAIN_H
  15. #define _MAIN_H
  16.  
  17. #ifndef _PROC_H
  18. #include "proc.h"
  19. #endif
  20.  
  21. extern char Badhost[];
  22. extern char *Hostname;
  23. extern char Nospace[];            /* Generic malloc fail message */
  24.  
  25. extern struct proc *Cmdpp;
  26. extern struct proc *Display;
  27. extern int main_exit;            /* from main program (flag) */
  28.  
  29. extern char Prompt[];
  30.  
  31. #ifdef ATARI
  32. extern char atari_ver1[];
  33. extern char atari_ver2[];
  34. extern char atari_ver3[];
  35. #endif
  36.  
  37. #endif /* _MAIN_H */
  38.